home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
MATH
/
PI
/
PIDATA.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-06-07
|
388b
|
26 lines
unit pidata;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TPiDataModule = class(TDataModule)
private
{ Private declarations }
public
{ Public declarations }
cancel_operation: Boolean;
start_position: Integer;
end;
var
PiDataModule: TPiDataModule;
implementation
{$R *.DFM}
end.